home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / machserver / 1.098 / dev / diskStats.h < prev    next >
C/C++ Source or Header  |  1990-09-11  |  1KB  |  31 lines

  1. /*
  2.  * devDiskStats.h --
  3.  *
  4.  *    Declarations of routines for collecting statistics on Sprite disk 
  5.  *    usage.
  6.  *
  7.  * Copyright 1989 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  * $Header: /sprite/src/kernel/dev/RCS/diskStats.h,v 9.1 90/09/11 12:13:21 rab Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DISKSTATS
  20. #define _DISKSTATS
  21.  
  22.  
  23. /* procedures */
  24.  
  25. extern DevDiskStats *DevRegisterDisk _ARGS_((Fs_Device *devicePtr, char *deviceName, Boolean (*idleCheck)(), ClientData clientData));
  26. extern void Dev_GatherDiskStats _ARGS_((void));
  27. extern int Dev_GetDiskStats _ARGS_((Sys_DiskStats *diskStatArr, int numEntries));
  28.  
  29. #endif /* _DISKSTATS */
  30.  
  31.